home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / System Extensions / Macintosh Drag and Drop 1.1.1 / Demo Applications / DragText Sources / main.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-09  |  362 b   |  34 lines  |  [TEXT/KAHL]

  1. /*
  2.  *
  3.  *        main.c
  4.  *
  5.  *        Main program.
  6.  *        
  7.  *
  8.  *        Author:        Rob Johnston
  9.  *        Date:        Tuesday, January 14, 1992
  10.  *
  11.  *        Copyright © 1992 Apple Computer, Inc.
  12.  *
  13.  */
  14.  
  15. #define    _AllocateGlobals_
  16.  
  17. #include "globals.h"
  18.  
  19. #undef _AllocateGlobals_
  20.  
  21.  
  22. main()
  23.  
  24. {
  25.     InitializeToolbox();
  26.     InitializeGlobals();
  27.     InitEvents();
  28.     SetupMenus();
  29.  
  30.     EventLoop();
  31.  
  32.     DeallocateGlobals();
  33. }
  34.